home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
etc
/
apm
/
scripts.d
/
hwclock
< prev
Wrap
Text File
|
2008-06-19
|
235b
|
17 lines
#!/bin/sh
# Preserve the system clock around suspend/resume.
INIT="/etc/init.d/hwclock.sh"
[ -x "${INIT}" ] || exit 0
case "${1},${2}" in
(suspend,*)
"${INIT}" stop
;;
(resume,suspend)
"${INIT}" start
;;
esac
exit 0